home *** CD-ROM | disk | FTP | other *** search
/ Your Choice 3 / Your Choice Software Collection 3.iso / doom / progs / fort / install.bat < prev    next >
DOS Batch File  |  1994-05-04  |  950b  |  37 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO This program will install the new graphics for Ft. Knocks.
  4. ECHO You must have all of the included files + this one in your doom
  5. ECHO directory.  If not, please press Ctrl-C now.
  6. PAUSE
  7. CLS
  8. ECHO If you do not have a backup copy of your IWAD, make one so that
  9. ECHO after you finish the level, you may just replace the DOOM.WAD with
  10. ECHO the backup so that other levels look normal.
  11. ECHO If you'd like to make a backup copy now (DOOM.BAK, 10megs),
  12. ECHO Press "F1".  Otherwise, press any key to continue...
  13. reply
  14. if errorlevel 59 goto bak
  15.  
  16. :gfx
  17. ECHO Inserting new GFX...
  18. DMGRAPH DOOR9_1 -s DOOR9_1.PPM
  19. DMGRAPH W73A_1 -s W73A_1.PPM
  20. DMGRAPH W73A_2 -s W73A_2.PPM
  21. DMGRAPH W73B_1 -s W73B_1.PPM
  22. ECHO Done!
  23. PAUSE
  24. CLS
  25. ECHO TO RUN, TYPE:       DOOM -FILE FORT.WAD
  26. ECHO Then choose first episode.
  27. ECHO Good Luck.
  28. goto end
  29.  
  30. :bak
  31. ECHO Backing up DOOM.WAD to DOOM.BAK...
  32. COPY DOOM.WAD DOOM.BAK
  33. CLS
  34. goto gfx
  35.  
  36. :end
  37.